home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1985-11-07 | 1.1 KB | 35 lines |
- 10 ' ************************************************************
- 20 ' * Wyvern Picture *
- 30 ' * By: Kyle Cummings *
- 40 ' * Date: 11-06-85 *
- 50 ' * *
- 60 ' * (This picture was originally made on punched cards) *
- 70 ' ************************************************************
- 80 KEY OFF
- 90 CLS
- 100 INPUT "Do you want the BIG picture or the SMALL picture? (B or S) ";ANS$
- 110 CLS
- 120 IF ANS$="" THEN GOTO 100
- 130 JKC=INSTR("BbSs",LEFT$(ANS$,1))
- 140 ON JKC GOTO 160,160,190,190
- 150 GOTO 100
- 160 SCRNVAR=1
- 170 PICFILE$="DRAGBIG.BIN"
- 180 GOTO 210
- 190 SCRNVAR=2
- 200 PICFILE$="DRAGSMAL.BIN"
- 210 SCREEN SCRNVAR,0
- 220 IF SCRNVAR=1 THEN COLOR 0,0
- 230 ' -- Point SEG at the screen buffer.
- 240 DEF SEG=&HB800
- 250 ' -- Load the PICTURE into screen buffer.
- 260 BLOAD PICFILE$,0
- 270 ' -- Wait for a key to be pressed before exiting.
- 280 K$=INKEY$
- 290 IF K$="" THEN GOTO 280
- 300 ' -- Set everything back to normal.
- 310 SCREEN 0,0,0
- 320 WIDTH 80
- 330 COLOR 7,0
- 340 END
-